@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
  z-index: 1;
  height: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  header {
    height: auto;
    background-color: #fff;
  }
}
header .navbar img {
  width: 100%;
}

.bg-light {
  background-color: #fff !important;
}

.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #fff;
}

.btn-sm-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: normal;
}

.navbar-container {
  width: 100%;
  padding: 1.125rem 4rem;
}
@media (max-width: 991px) {
  .navbar-container {
    padding: 0.7rem 4rem;
  }
}
@media (max-width: 500px) {
  .navbar-container {
    padding: 0.7rem 1rem;
  }
}
.navbar-container .nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 991px) {
  .navbar-container .nav-buttons {
    display: none;
  }
}

.navbar {
  font-family: "Onest", sans-serif;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\ea4e";
  font-family: "remixicon";
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .navbar .dropdown-toggle::after {
    margin-left: 2px;
  }
}
.navbar .navbar-collapse {
  justify-content: center;
}
.navbar .nav-btn-secondary {
  display: inline-block;
  text-align: center;
  border-radius: 3rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 110%;
  cursor: pointer;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  transition: transform 0.1s ease-in-out, color 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
  font-family: "Onest", sans-serif;
}
@media (max-width: 1366px) {
  .navbar .nav-btn-secondary {
    padding: 0.55rem 1rem;
  }
}
.navbar .nav-btn-secondary:hover {
  background-color: #0f868c;
  border-color: #0f868c;
  color: #fff;
}
.navbar .theme-switcher {
  padding: 8px;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.5s ease;
  cursor: pointer;
  border: none;
}
.navbar .theme-switcher i {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  color: #0f868c;
  transition: all 0.5s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .theme-switcher:hover {
  background-color: #0f868c;
  transition: all 0.5s ease;
}
.navbar .theme-switcher:hover i {
  color: #fff;
  transition: all 0.5s ease;
}

@media (max-width: 991px) {
  .navbar-light .navbar-toggler {
    margin-right: 0 !important;
  }
}
@media (max-width: 991px) {
  .navbar-light .navbar-toggler:focus {
    box-shadow: none;
  }
}
.navbar-light .navbar-nav {
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 1024px) {
  .navbar-light .navbar-nav {
    gap: 0.5rem;
  }
}
@media (max-width: 991px) {
  .navbar-light .navbar-nav {
    align-items: flex-start;
    padding: 1.5rem 0 !important;
    gap: 0;
    border-top: none !important;
  }
}
.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  text-transform: capitalize;
  outline: none;
  transition: all 0.5s ease;
}
@media (max-width: 1280px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 15px;
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 7px;
  }
}
@media (max-width: 991px) {
  .navbar-light .navbar-nav .nav-link {
    color: #0f868c;
    text-align: left;
  }
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #7cdeec;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #7cdeec;
  position: relative;
}
.navbar-light .navbar-nav .nav-link.active::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 2px;
  background-color: #7cdeec;
  bottom: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.navbar-light .navbar-nav .nav-link.active:hover::before {
  width: 40%;
  transition: all 0.5s ease;
}
.navbar-light .navbar-brand {
  width: 160px;
  margin-right: 0;
}
@media (max-width: 1280px) {
  .navbar-light .navbar-brand {
    width: 120px;
  }
}
@media (max-width: 1024px) {
  .navbar-light .navbar-brand {
    width: 120px;
  }
}
@media (max-width: 991px) {
  .navbar-light .navbar-brand {
    width: 125px;
  }
}
@media (max-width: 500px) {
  .navbar-light .navbar-brand {
    width: 110px;
  }
}
.navbar-light a.btn {
  height: 75px;
}

.sticky-top {
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  background-color: #fff;
  height: 80px;
}
@media (max-width: 991px) {
  .sticky-top {
    height: auto;
  }
}
.sticky-top .navbar-light .navbar-nav .nav-link {
  color: #0f868c;
  font-weight: 500;
  transition: all 0.5s ease;
}
.sticky-top .navbar .nav-btn-secondary {
  background-color: #0f868c;
}
.sticky-top .navbar img {
  width: 85%;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}
.dropdown-menu {
  padding: 0 !important;
}
.dropdown-menu .dropdown-item.active {
  background-color: #0f868c !important;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    padding: 0;
    overflow: hidden;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item {
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.5s ease;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #0f868c;
    color: #fff;
    transition: all 0.5s ease;
  }
  .navbar .nav-item .dropdown-menu .dropdown-item.active {
    background-color: #0f868c;
    color: #fff;
    transition: all 0.5s ease;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
    justify-content: center;
  }
}
footer {
  width: 100%;
  background-color: #0f868c;
  padding: 5% 0 1% 0;
  float: left;
}
@media (max-width: 768px) {
  footer .col-lg-3 {
    width: 100%;
  }
}
@media (max-width: 1470px) {
  footer {
    padding: 5% 0 1% 0;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 5% 0;
    padding-top: 15%;
  }
}
footer .footer-box {
  width: 100%;
}
@media (max-width: 768px) {
  footer .footer-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  footer .footer-box {
    margin-bottom: 40px;
  }
}
footer .footer-box img {
  width: 45%;
}
@media (max-width: 1470px) {
  footer .footer-box img {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  footer .footer-box img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  footer .footer-box img {
    width: 28%;
    margin-top: 50px;
  }
}
@media (max-width: 500px) {
  footer .footer-box img {
    width: 32%;
    margin-top: 0px;
  }
}
footer .footer-box span {
  font-family: "Onest", sans-serif;
  font-size: 17px;
  color: #fff;
  line-height: 30px;
  display: block;
  margin: 30px 0 40px;
  padding-right: 8%;
}
@media (max-width: 1536px) {
  footer .footer-box span {
    margin: 25px 0 30px 0;
    line-height: 27px;
  }
}
@media (max-width: 1470px) {
  footer .footer-box span {
    font-size: 17px;
    line-height: 28px;
    margin: 25px 0 30px 0;
  }
}
@media (max-width: 1366px) {
  footer .footer-box span {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  footer .footer-box span {
    margin: 28px 0;
    padding-right: 0;
  }
}
footer .footer-box ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}
footer .footer-box ul li {
  display: flex;
  list-style: none;
  border: 1px solid #fff;
  width: 47px;
  height: 47px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  align-items: center;
  justify-content: center;
  float: left;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  footer .footer-box ul li {
    width: 45px;
    height: 45px;
  }
}
footer .footer-box ul li a {
  color: #fff;
  transition: all 0.5s ease;
}
footer .footer-box ul li a i {
  font-size: 23px;
}
@media (max-width: 1024px) {
  footer .footer-box ul li a i {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  footer .footer-box ul li a i {
    font-size: 24px;
  }
}
footer .footer-box ul li:hover {
  background-color: #fff;
  transition: all 0.5s ease;
}
footer .footer-box ul li:hover i {
  color: #0f868c;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  footer .footer-links-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  footer .footer-links-box.lst-box {
    margin-bottom: 0px;
  }
}
@media (max-width: 500px) {
  footer .footer-links-box.lst-box {
    margin-bottom: 0px !important;
  }
}
footer .footer-links-box h4 {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  margin-bottom: 26px;
}
@media (max-width: 1470px) {
  footer .footer-links-box h4 {
    font-size: 22px;
  }
}
@media (max-width: 1366px) {
  footer .footer-links-box h4 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  footer .footer-links-box h4 {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  footer .footer-links-box h4 {
    margin-bottom: 13px;
    font-size: 23px;
  }
}
footer .footer-links-box li {
  margin-bottom: 8px;
  transition: all 0.5s ease;
  color: #fff;
  display: flex;
}
@media (max-width: 1366px) {
  footer .footer-links-box li {
    margin-bottom: 6px;
  }
}
footer .footer-links-box li:hover {
  margin-left: 5px;
  transition: all 0.5s ease;
}
footer .footer-links-box li a {
  color: #fff !important;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
}
@media (max-width: 1366px) {
  footer .footer-links-box li a {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  footer .footer-links-box li a {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  footer .footer-links-box li a {
    font-size: 17px;
  }
}
@media (max-width: 1470px) {
  footer .footer-links-box li a {
    font-size: 17px;
  }
}
@media (max-width: 1366px) {
  footer .footer-links-box li a {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  footer .footer-links-box li a {
    font-size: 17px;
  }
}
footer .footer-links-box li:nth-last-child(1) {
  margin-bottom: 0;
}
footer .footer-links-box li i {
  font-size: 20px;
  margin-right: 15px;
}
footer .footer-links-box p {
  font-family: "Onest", sans-serif;
  font-size: 17px;
  color: #fff;
  line-height: 30px;
  display: block;
  margin-bottom: 15px;
  display: flex;
}
footer .footer-links-box p i {
  font-size: 20px;
  margin-right: 15px;
}
footer .footer-hr {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 65px 0 25px;
}
@media (max-width: 1536px) {
  footer .footer-hr {
    margin: 55px 0 25px;
  }
}
@media (max-width: 1366px) {
  footer .footer-hr {
    margin: 55px 0 25px;
  }
}
@media (max-width: 768px) {
  footer .footer-hr {
    margin: 35px 0 25px;
  }
}
@media (max-width: 500px) {
  footer .footer-hr {
    margin: 20px 0 20px;
  }
}
footer .copyright-box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 500px) {
  footer .copyright-box {
    display: block;
    text-align: center;
  }
}
footer .copyright-box p {
  font-size: 13px;
  font-family: "Onest", sans-serif;
  color: #fff;
}
footer .copyright-box p a {
  color: #fff;
  text-decoration: underline;
}

.ico {
  margin: 0 auto;
  text-align: center;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 93%;
  left: 50%;
  transform: translateY(-50%);
  filter: url(#goo);
}
@media (max-width: 1024px) {
  .ico {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 500px) {
  .ico {
    left: 45%;
  }
}
.ico .circle {
  background: transparent;
  border-radius: 50%;
  display: inline-block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.ico .circle.circle-top {
  height: 12.5px;
  width: 20.8333333333px;
  animation: blob-1-anim 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  z-index: 0;
  top: 0;
}
.ico .st-arrow {
  fill: #fff;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}

.ico .svg {
  z-index: 9;
  position: relative;
}

@keyframes blob-1-anim {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  14% {
    transform: translateX(-50%) translateY(-8px);
  }
  24% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes blob-2-anim {
  0% {
    transform: scale(1) translate(-50%, 10px);
  }
  30% {
    transform: scale(1) translate(-50%, 10px);
  }
  70% {
    transform: scale(1) translate(-50%, 10px);
  }
  95% {
    transform: scale(1) translate(-50%, 26px);
  }
  100% {
    transform: scale(1) translate(-50%, 10px);
  }
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  30% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  95% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.contact-form-section {
  width: 100%;
}
.contact-form-section .contact-main-box {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .contact-form-section .contact-main-box {
    display: block;
  }
}
.contact-form-section .contact-main-box .row {
  gap: 35px 0;
}
@media (max-width: 1280px) {
  .contact-form-section .contact-main-box .row {
    gap: 30px 0;
  }
}
@media (max-width: 991px) {
  .contact-form-section .contact-main-box .row {
    gap: 25px 0;
  }
}
.contact-form-section .contact-main-box .contact-form-left {
  background-color: #0f868c;
  width: 50%;
}
.contact-form-section .contact-main-box .contact-form-left h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 55px;
  letter-spacing: 1px;
  position: relative;
}
@media (max-width: 1600px) {
  .contact-form-section .contact-main-box .contact-form-left h4 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1536px) {
  .contact-form-section .contact-main-box .contact-form-left h4 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 1366px) {
  .contact-form-section .contact-main-box .contact-form-left h4 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 1280px) {
  .contact-form-section .contact-main-box .contact-form-left h4 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 1024px) {
  .contact-form-section .contact-main-box .contact-form-left h4 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 500px) {
  .contact-form-section .contact-main-box .contact-form-left h4 {
    font-size: 28px;
    line-height: 34px;
  }
}
.contact-form-section .contact-main-box .contact-form-left h4::after {
  position: absolute;
  content: "";
  animation: textrotate 5s linear infinite;
  -webkit-animation: textrotate 5s linear infinite;
  font-family: "DM Sans", sans-serif;
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  left: 0;
  bottom: -95px;
}
@media (max-width: 1366px) {
  .contact-form-section .contact-main-box .contact-form-left h4::after {
    font-size: 52px;
    bottom: -80px;
  }
}
@media (max-width: 1024px) {
  .contact-form-section .contact-main-box .contact-form-left h4::after {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .contact-form-section .contact-main-box .contact-form-left h4::after {
    position: static;
    margin-top: 25px;
    display: block;
  }
}
@media (max-width: 500px) {
  .contact-form-section .contact-main-box .contact-form-left h4::after {
    font-size: 40px;
  }
}
.contact-form-section .contact-main-box .contact-form {
  width: 50%;
}
.contact-form-section .contact-main-box .contact-form form {
  width: 100%;
}
.contact-form-section .contact-main-box .contact-form form input {
  padding: 10px 20px;
  color: #1e1e1e;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  border: none;
  font-weight: 400;
  border: 1px solid #0f868c;
}
@media (max-width: 1280px) {
  .contact-form-section .contact-main-box .contact-form form input {
    font-size: 16px;
  }
}
.contact-form-section .contact-main-box .contact-form form input::placeholder {
  opacity: 1;
  color: var(--black);
}
.contact-form-section .contact-main-box .contact-form form input::-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}
.contact-form-section .contact-main-box .contact-form form textarea {
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  font-size: 16px;
  border: none;
  font-weight: 400;
  border: 1px solid #0f868c;
}
.contact-form-section .contact-main-box .contact-form form textarea::placeholder {
  opacity: 1;
  color: var(--black);
}
.contact-form-section .contact-main-box .contact-form form textarea::-ms-input-placeholder {
  color: var(--black);
  opacity: 1;
}
.contact-form-section .contact-main-box .contact-form input::-webkit-outer-spin-button,
.contact-form-section .contact-main-box .contact-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-form-section .contact-main-box .contact-form .form-control:focus {
  box-shadow: none;
}
.contact-form-section .contact-main-box .contact-form p {
  font-family: "DM Sans", sans-serif;
  font-size: 25px;
  color: #114547;
  line-height: 38px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .contact-form-section .contact-main-box .contact-form p {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 1280px) {
  .contact-form-section .contact-main-box .contact-form p {
    line-height: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .contact-form-section .contact-main-box .contact-form p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .contact-form-section .contact-main-box .contact-form p {
    font-size: 20px;
    line-height: 30px;
  }
}
.contact-form-section .contact-main-box .contact-form-left,
.contact-form-section .contact-main-box .contact-form {
  padding: 145px;
}
@media (max-width: 1600px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    padding: 130px;
  }
}
@media (max-width: 1536px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    padding: 100px;
  }
}
@media (max-width: 1366px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    padding: 90px;
  }
}
@media (max-width: 1280px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    padding: 60px;
  }
}
@media (max-width: 1024px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    padding: 45px;
  }
}
@media (max-width: 768px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    width: 100%;
    padding: 55px;
  }
}
@media (max-width: 500px) {
  .contact-form-section .contact-main-box .contact-form-left,
  .contact-form-section .contact-main-box .contact-form {
    padding: 20px;
  }
}
.contact-form-section .contact-main-box .form-submit-btn {
  padding: 10px 20px;
  background-color: #0f868c;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  width: auto;
  outline: none;
  border: none;
  border-radius: 35px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0px;
  transition: all 0.5s ease;
}
@media (max-width: 1280px) {
  .contact-form-section .contact-main-box .form-submit-btn {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .contact-form-section .contact-main-box .form-submit-btn {
    font-size: 17px;
  }
}
.contact-form-section .contact-main-box .form-submit-btn:hover {
  background-color: #114547;
  transition: all 0.5s ease;
}
@media (max-width: 500px) {
  .contact-form-section .contact-main-box .form-submit-btn {
    font-size: 17px;
    margin-top: 0px;
  }
}

@keyframes textrotate {
  0% {
    content: "Recycling.";
  }
  50% {
    content: "Reinventing.";
  }
  100% {
    content: "Responsibly.";
  }
}
.contact-us-address-section {
  width: 100%;
}
.contact-us-address-section .address-main-box {
  display: flex;
}
@media (max-width: 768px) {
  .contact-us-address-section .address-main-box {
    display: block;
  }
}
.contact-us-address-section .address-main-box .address-box-left {
  width: 50%;
  padding: 145px;
  overflow: hidden;
  background-image: url(../img/one-earth-bg-vector.png);
  background-size: cover;
}
@media (max-width: 1600px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 130px;
  }
}
@media (max-width: 1536px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 100px;
  }
}
@media (max-width: 1366px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 90px;
  }
}
@media (max-width: 1280px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 60px;
  }
}
@media (max-width: 1024px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 45px;
  }
}
@media (max-width: 768px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 55px;
  }
}
@media (max-width: 500px) {
  .contact-us-address-section .address-main-box .address-box-left {
    padding: 30px;
  }
}
.contact-us-address-section .address-main-box .address-box-left h2 {
  font-family: "DM Sans", sans-serif;
  color: #114547;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 40px;
}
@media (max-width: 1600px) {
  .contact-us-address-section .address-main-box .address-box-left h2 {
    font-size: 45px;
  }
}
@media (max-width: 1536px) {
  .contact-us-address-section .address-main-box .address-box-left h2 {
    margin-bottom: 15px;
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .contact-us-address-section .address-main-box .address-box-left h2 {
    font-size: 40px;
  }
}
@media (max-width: 1366px) {
  .contact-us-address-section .address-main-box .address-box-left h2 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .contact-us-address-section .address-main-box .address-box-left h2 {
    font-size: 34px;
  }
}
@media (max-width: 500px) {
  .contact-us-address-section .address-main-box .address-box-left h2 {
    font-size: 30px;
  }
}
.contact-us-address-section .address-main-box .address-box-left p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  margin-bottom: 20px;
  line-height: 35px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
@media (max-width: 1366px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    margin-bottom: 30px;
  }
}
@media (max-width: 1536px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    margin-bottom: 15px;
    line-height: 30px;
  }
}
@media (max-width: 1470px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    font-size: 19px;
  }
}
@media (max-width: 1366px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .contact-us-address-section .address-main-box .address-box-left p {
    font-size: 18px;
  }
}
.contact-us-address-section .address-main-box .address-box-left p:nth-last-child(1) {
  margin-bottom: 0;
}
.contact-us-address-section .address-main-box .address-box-left p i {
  font-size: 25px;
  color: #0f868c;
  margin-right: 10px;
}
.contact-us-address-section .address-main-box .address-box-left p a {
  color: #1e1e1e;
}
.contact-us-address-section .address-main-box .address-box-right {
  width: 50%;
}
.contact-us-address-section .address-main-box .address-box-right #map {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .contact-us-address-section .address-main-box .address-box-right #map {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .contact-us-address-section .address-main-box .address-box-right #map {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .contact-us-address-section .address-main-box .address-box-left,
  .contact-us-address-section .address-main-box .address-box-right {
    width: 100%;
  }
}

.errorMsg {
  padding: 1px 0px 0px 15px;
  bottom: 20px;
  position: relative;
  display: none;
  color: red;
  font-family: verdana;
  font-size: 13px;
  float: left;
}

.errorMsg1 {
  padding: 1px 0px 0px 15px;
  bottom: 20px;
  position: relative;
  display: none;
  color: red;
  font-family: verdana;
  font-size: 13px;
}

.submitbtnHome {
  background: #2a2b26;
  padding: 8px 22px;
  border: none;
  position: relative;
  top: 30px;
  left: 390px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.5s ease;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
}

.submitbtnHome:hover {
  background: #f36b1c;
  color: #000;
  transition: all 0.5s ease;
}

.bag-img {
  position: absolute;
  left: 39%;
  bottom: -210px;
  width: 15%;
}
@media (max-width: 1600px) {
  .bag-img {
    bottom: -150px;
    width: 14%;
  }
}
@media (max-width: 1536px) {
  .bag-img {
    bottom: 25px;
  }
}
@media (max-width: 1470px) {
  .bag-img {
    bottom: 35px;
  }
}
@media (max-width: 1366px) {
  .bag-img {
    bottom: -110px;
  }
}
@media (max-width: 1101px) {
  .bag-img {
    bottom: 75px;
  }
}
.bag-img img {
  width: 100%;
  animation: jumpAni 5s linear infinite;
}
@media (max-width: 768px) {
  .bag-img {
    display: none;
  }
}

.mg-bt30 {
  margin-bottom: 100px;
}
@media (max-width: 1536px) {
  .mg-bt30 {
    margin-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .mg-bt30 {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .mg-bt30 {
    margin-bottom: 30px;
  }
}

.product-info-section {
  width: 100%;
  overflow: hidden;
  padding: 5% 0;
  width: 100%;
}
.product-info-section .prodcuts-page-slider .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  z-index: 1;
}
.product-info-section .prodcuts-page-slider .prev-arrow {
  left: 70px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .product-info-section .prodcuts-page-slider .prev-arrow {
    left: 0px;
    display: none !important;
  }
}
.product-info-section .prodcuts-page-slider .prev-arrow::before {
  position: absolute;
  content: "\ea64";
  color: #0f868c;
  left: 50%;
  top: 50%;
  font-family: "remixicon";
  font-style: normal;
  transform: translate(-50%, -50%);
  font-size: 27px;
}
.product-info-section .prodcuts-page-slider .prev-arrow:hover {
  background-color: #114547;
  transition: all 0.5s ease;
}
.product-info-section .prodcuts-page-slider .prev-arrow:hover::before {
  color: #fff;
  transition: all 0.5s ease;
}
.product-info-section .prodcuts-page-slider .next-arrow {
  right: 70px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .product-info-section .prodcuts-page-slider .next-arrow {
    right: 0px;
    display: none !important;
  }
}
.product-info-section .prodcuts-page-slider .next-arrow::before {
  position: absolute;
  content: "\ea6e";
  color: #0f868c;
  left: 50%;
  top: 50%;
  font-family: "remixicon";
  font-style: normal;
  transform: translate(-50%, -50%);
  font-size: 27px;
}
.product-info-section .prodcuts-page-slider .next-arrow:hover {
  background-color: #114547;
  transition: all 0.5s ease;
}
.product-info-section .prodcuts-page-slider .next-arrow:hover::before {
  color: #fff;
  transition: all 0.5s ease;
}
.product-info-section .prodcuts-page-slider .cta-btn {
  font-size: 16px !important;
  padding: 7px 12px !important;
  margin-top: 15px !important;
}
@media (max-width: 1280px) {
  .product-info-section .prodcuts-page-slider .cta-btn {
    font-size: 15px !important;
  }
}
.product-info-section::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 520px;
  background-image: url(../img/why-meshiva-vector.png);
  background-size: cover;
  right: 0px;
  top: 100px;
}
@media (max-width: 1536px) {
  .product-info-section {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .product-info-section {
    padding: 4% 0;
  }
}
@media (max-width: 768px) {
  .product-info-section .col-md-6 {
    width: 100% !important;
  }
}
.product-info-section img {
  width: 40%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1024px) {
  .product-info-section img {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .product-info-section img {
    width: 40%;
  }
}
@media (max-width: 500px) {
  .product-info-section img {
    width: 50%;
  }
}
.product-info-section .creations-right-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  padding-right: 20%;
}
@media (max-width: 768px) {
  .product-info-section .creations-right-content {
    padding-right: 0;
    margin-top: 30px;
  }
}
.product-info-section .creations-right-content h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 1600px) {
  .product-info-section .creations-right-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .product-info-section .creations-right-content h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .product-info-section .creations-right-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .product-info-section .creations-right-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .product-info-section .creations-right-content h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .product-info-section .creations-right-content h1 {
    letter-spacing: 0;
  }
}
@media (max-width: 1280px) {
  .product-info-section .creations-right-content h1 {
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .product-info-section .creations-right-content h1 {
    line-height: 40px;
  }
}
.product-info-section .creations-right-content span {
  font-size: 22px;
  color: #0f868c;
  display: inline-block;
  font-weight: 600;
  margin-top: 5px;
  line-height: 32px;
  font-family: "Onest", sans-serif;
  margin-top: 12px;
}
@media (max-width: 1470px) {
  .product-info-section .creations-right-content span {
    font-size: 24px;
    margin-top: 5px;
    line-height: 30px;
  }
}
@media (max-width: 1280px) {
  .product-info-section .creations-right-content span {
    font-size: 21px;
    margin-top: 5px;
    line-height: 27px;
  }
}
@media (max-width: 768px) {
  .product-info-section .creations-right-content span {
    margin-top: 5px;
  }
}
.product-info-section .creations-right-content p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  margin-top: 12px;
  line-height: 30px;
}
@media (max-width: 1366px) {
  .product-info-section .creations-right-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .product-info-section .creations-right-content p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .product-info-section .creations-right-content p {
    line-height: 27px;
    margin-top: 10px;
  }
}
@media (max-width: 1280px) {
  .product-info-section .creations-right-content p {
    line-height: 27px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .product-info-section .creations-right-content p {
    margin-top: 10px;
    line-height: 27px;
  }
}
.product-info-section .features-main-grid {
  position: relative;
}
.product-info-section .features-main-grid .feature-btn {
  position: absolute;
  top: -28px;
  left: 50%;
  color: #114547;
  font-size: 25px;
  font-family: "DM Sans", sans-serif;
  padding: 7px 20px;
  border: 3px solid #fff;
  border-radius: 50px;
  transform: translate(-50%, 0px);
}
@media (max-width: 1600px) {
  .product-info-section .features-main-grid .feature-btn {
    font-size: 22px;
  }
}
.product-info-section .features-main-grid .feature-btn:focus {
  box-shadow: none;
  outline: none;
}
.product-info-section .features-main-grid .features-grid {
  width: 100%;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 3em;
  text-align: center;
  margin-top: 80px;
  border-radius: 35px;
  padding: 40px 40px 40px 40px;
  padding-bottom: 0 !important;
}
@media (max-width: 1600px) {
  .product-info-section .features-main-grid .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}
@media (max-width: 1536px) {
  .product-info-section .features-main-grid .features-grid {
    margin-top: 30px;
    padding: 40px 0 40px 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (max-width: 1470px) {
  .product-info-section .features-main-grid .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    margin-top: 40px;
  }
}
@media (max-width: 1280px) {
  .product-info-section .features-main-grid .features-grid {
    margin-top: 30px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  }
}
@media (max-width: 1101px) {
  .product-info-section .features-main-grid .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
}
@media (max-width: 1024px) {
  .product-info-section .features-main-grid .features-grid {
    padding: 40px 0 40px 0;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 991px) {
  .product-info-section .features-main-grid .features-grid {
    padding: 40px 0 40px 0;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
}
@media (max-width: 768px) {
  .product-info-section .features-main-grid .features-grid {
    padding: 40px 0;
    grid-gap: 1em;
    grid-template-columns: repeat(auto-fill, minmax(307px, 1fr));
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  .product-info-section .features-main-grid .features-grid {
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    padding: 0px;
    grid-gap: 0.2em;
    margin-top: 35px;
  }
}
.product-info-section .features-main-grid .features-grid .feature-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .product-info-section .features-main-grid .features-grid .feature-box {
    background-color: #0f868c;
    padding: 10px;
    border-radius: 15px;
  }
}
.product-info-section .features-main-grid .features-grid .feature-box::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #0f868c;
  right: -25px;
  bottom: 0;
}
@media (max-width: 1536px) {
  .product-info-section .features-main-grid .features-grid .feature-box::after {
    right: -25px;
  }
}
@media (max-width: 768px) {
  .product-info-section .features-main-grid .features-grid .feature-box::after {
    height: 80%;
    right: -17px;
    bottom: 10px;
    display: none;
  }
}
@media (max-width: 500px) {
  .product-info-section .features-main-grid .features-grid .feature-box::after {
    height: 2px;
    right: 50%;
    bottom: -16px;
    width: 75%;
    background-color: #fff;
    transform: translate(50%, 0);
    display: none;
  }
}
.product-info-section .features-main-grid .features-grid .feature-box:nth-last-child(1)::after {
  display: none;
}
.product-info-section .features-main-grid .features-grid .feature-box span {
  font-size: 50px;
  color: #114547;
  font-family: "Onest", sans-serif;
  font-weight: 600;
}
.product-info-section .features-main-grid .features-grid .feature-box p {
  font-size: 20px;
  font-family: "Onest", sans-serif;
  color: #114547;
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .product-info-section .features-main-grid .features-grid .feature-box p br {
    display: none;
  }
}
@media (max-width: 1536px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    line-height: 27px;
  }
}
@media (max-width: 1470px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    line-height: 26px;
    font-size: 17px;
  }
}
@media (max-width: 1101px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    line-height: 24px;
    color: #fff;
  }
}
@media (max-width: 500px) {
  .product-info-section .features-main-grid .features-grid .feature-box p {
    color: #fff;
  }
}

.our-process-section {
  width: 100%;
  background-color: #f3f3f3;
  float: left;
  padding: 5% 0;
  width: 100%;
}
@media (max-width: 768px) {
  .our-process-section .col-md-6 {
    width: 100% !important;
  }
}
.our-process-section::before {
  position: absolute;
  content: "";
  width: 454px;
  height: 668px;
  background-image: url("../img/one-earth-bg-vector.png");
  background-size: cover;
  left: -20px;
  top: 0px;
}
@media (max-width: 1536px) {
  .our-process-section {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .our-process-section {
    padding: 4% 0;
  }
}
.our-process-section h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 1600px) {
  .our-process-section h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .our-process-section h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .our-process-section h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .our-process-section h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .our-process-section h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .our-process-section h1 {
    letter-spacing: 0;
  }
}
.our-process-section p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  text-align: center;
  line-height: 32px;
  margin-top: 25px;
}
@media (max-width: 1366px) {
  .our-process-section p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .our-process-section p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .our-process-section p {
    line-height: 28px;
  }
}
@media (max-width: 1280px) {
  .our-process-section p {
    margin-top: 5px;
    margin-bottom: 0;
  }
}
@media (max-width: 1280px) {
  .our-process-section p br {
    display: none;
  }
}
.our-process-section .process-main-box {
  width: 90%;
  margin: 70px auto 0;
  display: block;
}
@media (max-width: 1536px) {
  .our-process-section .process-main-box {
    margin: 55px auto 0;
  }
}
@media (max-width: 1280px) {
  .our-process-section .process-main-box {
    margin: 40px auto 0;
  }
}
@media (max-width: 768px) {
  .our-process-section .process-main-box {
    margin: 30px auto 0;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .our-process-section .process-main-box {
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  .our-process-section .process-main-box .mob-mrg {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .our-process-section .process-main-box .mob-mrg {
    margin-bottom: 30px;
  }
}
.our-process-section .process-main-box .process-box {
  width: 85%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .our-process-section .process-main-box .process-box {
    width: 100%;
  }
}
.our-process-section .process-main-box .process-box .process-img {
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.our-process-section .process-main-box .process-box .process-img:hover img {
  transition: all 0.5s ease;
  transform: scale(1.1);
  filter: grayscale(70%);
}
.our-process-section .process-main-box .process-box .process-img img {
  width: 100%;
  transition: all 0.5s ease;
}
.our-process-section .process-main-box .process-box .process-content {
  width: 100%;
}
.our-process-section .process-main-box .process-box .process-content h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 38px;
  color: #114547;
  font-weight: 600;
  margin-top: 15px;
}
@media (max-width: 1536px) {
  .our-process-section .process-main-box .process-box .process-content h2 {
    font-size: 38px;
    margin-top: 15px;
  }
}
@media (max-width: 1470px) {
  .our-process-section .process-main-box .process-box .process-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 1280px) {
  .our-process-section .process-main-box .process-box .process-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .our-process-section .process-main-box .process-box .process-content h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .our-process-section .process-main-box .process-box .process-content h2 {
    margin-top: 10px;
  }
}
.our-process-section .process-main-box .process-box .process-content p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  color: #114547;
  line-height: 27px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 1366px) {
  .our-process-section .process-main-box .process-box .process-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .our-process-section .process-main-box .process-box .process-content p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .our-process-section .process-main-box .process-box .process-content p {
    line-height: 27px;
  }
}
@media (max-width: 500px) {
  .our-process-section .process-main-box .process-box .process-content p {
    margin-top: 5px;
  }
}

.other-products {
  padding: 5% 0;
  width: 100%;
}
@media (max-width: 1536px) {
  .other-products {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .other-products {
    padding: 4% 0;
  }
}
.other-products h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 1600px) {
  .other-products h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .other-products h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .other-products h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .other-products h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .other-products h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .other-products h1 {
    letter-spacing: 0;
  }
}

.about-us-section {
  width: 100%;
  padding: 5% 0;
  width: 100%;
  float: left;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .about-us-section {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .about-us-section {
    padding: 4% 0;
  }
}
.about-us-section::before {
  position: absolute;
  content: "";
  width: 454px;
  height: 668px;
  background-image: url("../img/one-earth-bg-vector.png");
  background-size: cover;
  left: -20px;
  bottom: 35%;
}
@media (max-width: 1024px) {
  .about-us-section .founders-copy {
    display: block !important;
  }
}
.about-us-section .about-us-left {
  width: 45%;
  float: left;
}
@media (max-width: 1024px) {
  .about-us-section .about-us-left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about-us-section .about-us-left {
    width: 100%;
    position: static;
  }
}
.about-us-section .about-us-left .about-us-img {
  width: 100%;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.about-us-section .about-us-left .about-us-img img {
  width: 100%;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.about-us-section .about-us-right {
  width: 55%;
  float: right;
  padding-left: 7%;
}
@media (max-width: 1536px) {
  .about-us-section .about-us-right {
    padding-left: 4%;
  }
}
@media (max-width: 1101px) {
  .about-us-section .about-us-right {
    padding-left: 4%;
  }
}
@media (max-width: 1024px) {
  .about-us-section .about-us-right {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .about-us-section .about-us-right {
    width: 100%;
    padding-left: 0;
  }
}
.about-us-section .about-us-right.before-css::before {
  display: none !important;
}
.about-us-section .about-us-right::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 520px;
  background-image: url(../img/why-meshiva-vector.png);
  background-size: cover;
  right: -200px;
  top: 0px;
}
.about-us-section .about-us-right .about-right-content-box {
  width: 100%;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .about-us-section .about-us-right .about-right-content-box br {
    display: none;
  }
}
@media (max-width: 1366px) {
  .about-us-section .about-us-right .about-right-content-box {
    margin-bottom: 40px;
  }
}
.about-us-section .about-us-right .about-right-content-box:nth-last-child(1) {
  margin-bottom: 0;
}
.about-us-section .about-us-right .about-right-content-box h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
@media (max-width: 1600px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    letter-spacing: 0;
  }
}
@media (max-width: 1536px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    margin-bottom: 10px;
  }
}
@media (max-width: 1470px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    margin-bottom: 9px;
  }
}
@media (max-width: 1366px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    margin-bottom: 10px;
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    margin-bottom: 2px;
    font-size: 32px;
    line-height: 55px;
  }
}
@media (max-width: 500px) {
  .about-us-section .about-us-right .about-right-content-box h1 {
    line-height: 40px;
    margin-bottom: 10px;
    font-size: 30px;
  }
}
.about-us-section .about-us-right .about-right-content-box p {
  margin-bottom: 10px;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  line-height: 30px;
}
@media (max-width: 1366px) {
  .about-us-section .about-us-right .about-right-content-box p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .about-us-section .about-us-right .about-right-content-box p {
    text-align: justify;
    font-size: 18px;
  }
}
.about-us-section .about-us-right .about-right-content-box p:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 1536px) {
  .about-us-section .about-us-right .about-right-content-box p {
    line-height: 27px;
  }
}
@media (max-width: 1280px) {
  .about-us-section .about-us-right .about-right-content-box p {
    line-height: 27px;
  }
}
@media (max-width: 1024px) {
  .about-us-section .about-us-right .about-right-content-box p {
    line-height: 27px;
  }
}
@media (max-width: 991px) {
  .about-us-section .about-us-right .about-right-content-box p {
    text-align: justify;
  }
}
@media (max-width: 768px) {
  .about-us-section .about-us-right .about-right-content-box p {
    text-align: justify;
  }
}

.about-cta {
  background-image: url("../img/about-cta-bg.webp") !important;
}
.about-cta .img-div {
  top: -85px !important;
}
@media (max-width: 1470px) {
  .about-cta .img-div {
    top: -40px !important;
  }
}
@media (max-width: 768px) {
  .about-cta .img-div {
    display: none;
  }
}

.mission-vision-statement {
  width: 100%;
  background-image: url("../img/mission-vision-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5% 0;
  width: 100%;
  float: left;
}
@media (max-width: 1536px) {
  .mission-vision-statement {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .mission-vision-statement {
    padding: 4% 0;
  }
}
.mission-vision-statement .statement-box {
  width: 100%;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
  grid-gap: 3em;
}
@media (max-width: 1600px) {
  .mission-vision-statement .statement-box {
    grid-gap: 2em;
  }
}
@media (max-width: 1366px) {
  .mission-vision-statement .statement-box {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}
@media (max-width: 1101px) {
  .mission-vision-statement .statement-box {
    grid-gap: 1em;
  }
}
.mission-vision-statement .statement-box .statement-grid-box {
  cursor: pointer;
  background: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
@media (max-width: 1280px) {
  .mission-vision-statement .statement-box .statement-grid-box {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.mission-vision-statement .statement-box .statement-grid-box:hover {
  background-color: #0f868c;
  transition: all 0.5s ease;
}
.mission-vision-statement .statement-box .statement-grid-box:hover .img-div img {
  transform: scale(1.1);
  transition: all 0.5s ease;
  filter: grayscale(10%);
}
.mission-vision-statement .statement-box .statement-grid-box:hover .statement-content h1 {
  color: #fff;
  transition: all 0.5s ease;
}
.mission-vision-statement .statement-box .statement-grid-box:hover .statement-content p {
  color: #fff;
  transition: all 0.5s ease;
}
.mission-vision-statement .statement-box .statement-grid-box:hover .statement-content .icons-div img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  transition: all 0.5s ease;
}
.mission-vision-statement .statement-box .statement-grid-box .img-div {
  width: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .mission-vision-statement .statement-box .statement-grid-box .img-div {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.mission-vision-statement .statement-box .statement-grid-box .img-div img {
  width: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  transition: all 0.5s ease;
}
@media (max-width: 1280px) {
  .mission-vision-statement .statement-box .statement-grid-box .img-div img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.mission-vision-statement .statement-box .statement-grid-box .statement-content {
  width: 100%;
  position: relative;
  padding: 90px 20px 30px 20px;
  text-align: center;
}
@media (max-width: 1600px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content {
    padding: 80px 20px 30px 20px;
  }
}
@media (max-width: 1536px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content {
    padding: 75px 20px 30px 20px;
  }
}
@media (max-width: 1470px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content {
    padding: 65px 20px 30px 20px;
  }
}
@media (max-width: 1101px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content {
    padding: 60px 20px 30px 20px;
  }
}
@media (max-width: 1024px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content {
    padding: 50px 20px 30px 20px;
  }
}
.mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div {
  width: 130px;
  height: 130px;
  border: 3px solid #fff;
  display: flex;
  transition: all 0.5s ease;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 70px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: #0f868c;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1600px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1470px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div {
    width: 115px;
    height: 115px;
  }
}
@media (max-width: 1280px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 1101px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1024px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div {
    width: 90px;
    height: 90px;
  }
}
.mission-vision-statement .statement-box .statement-grid-box .statement-content .icons-div img {
  width: 60%;
  transition: all 0.5s ease;
}
.mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  transition: all 0.5s ease;
}
@media (max-width: 1600px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    letter-spacing: 0;
  }
}
@media (max-width: 1536px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    margin-bottom: 8px;
  }
}
@media (max-width: 1470px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    margin-bottom: 2px;
  }
}
@media (max-width: 1366px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    line-height: 55px;
  }
}
@media (max-width: 1101px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    line-height: 50px;
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content h1 {
    font-size: 29px;
  }
}
.mission-vision-statement .statement-box .statement-grid-box .statement-content p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  line-height: 30px;
  transition: all 0.5s ease;
}
@media (max-width: 1366px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    line-height: 27px;
  }
}
@media (max-width: 1366px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    line-height: 28px;
  }
}
@media (max-width: 1280px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    line-height: 27px;
  }
}
@media (max-width: 1101px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    text-align: justify;
  }
}
@media (max-width: 1024px) {
  .mission-vision-statement .statement-box .statement-grid-box .statement-content p {
    line-height: 27px;
  }
}

.founders-desk {
  width: 100%;
  padding: 5% 0;
  width: 100%;
  float: left;
  background-color: #f3f3f3;
}
@media (max-width: 1536px) {
  .founders-desk {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .founders-desk {
    padding: 4% 0;
  }
}
.founders-desk h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 1600px) {
  .founders-desk h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .founders-desk h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .founders-desk h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .founders-desk h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .founders-desk h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .founders-desk h1 {
    letter-spacing: 0;
  }
}
.founders-desk p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  line-height: 32px;
  margin-top: 25px;
}
@media (max-width: 1366px) {
  .founders-desk p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .founders-desk p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .founders-desk p {
    margin-top: 10px;
    line-height: 27px;
  }
}
@media (max-width: 1280px) {
  .founders-desk p {
    margin-top: 5px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .founders-desk p {
    margin-top: 15px;
  }
}
@media (max-width: 500px) {
  .founders-desk p {
    text-align: justify !important;
    margin-top: 5px;
  }
}
@media (max-width: 1600px) {
  .founders-desk p br {
    display: none;
  }
}
.founders-desk .founders-grid {
  width: 90%;
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
  grid-gap: 3em;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 1536px) {
  .founders-desk .founders-grid {
    margin-top: 55px;
    width: 100%;
    grid-gap: 2em;
  }
}
@media (max-width: 1470px) {
  .founders-desk .founders-grid {
    width: 100%;
    grid-gap: 2em;
  }
}
@media (max-width: 1366px) {
  .founders-desk .founders-grid {
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  }
}
@media (max-width: 1280px) {
  .founders-desk .founders-grid {
    margin-top: 45px;
  }
}
@media (max-width: 768px) {
  .founders-desk .founders-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    grid-gap: 2em;
  }
}
@media (max-width: 500px) {
  .founders-desk .founders-grid {
    margin-top: 30px;
  }
}
.founders-desk .founders-grid .founders-div {
  text-align: left;
  background-color: #e7e7e7;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.founders-desk .founders-grid .founders-div:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.founders-desk .founders-grid .founders-div .img-div {
  overflow: hidden;
}
.founders-desk .founders-grid .founders-div .img-div img {
  width: 100%;
  transition: all 0.5s ease;
}
.founders-desk .founders-grid .founders-div .founders-content {
  padding: 20px;
}
@media (max-width: 1280px) {
  .founders-desk .founders-grid .founders-div .founders-content {
    padding: 15px;
  }
}
.founders-desk .founders-grid .founders-div .founders-content h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 33px;
  color: #114547;
  font-weight: 500;
  margin-top: 5px;
}
@media (max-width: 1470px) {
  .founders-desk .founders-grid .founders-div .founders-content h2 {
    font-size: 31px;
  }
}
@media (max-width: 1280px) {
  .founders-desk .founders-grid .founders-div .founders-content h2 {
    font-size: 28px;
    margin-top: 0;
  }
}
.founders-desk .founders-grid .founders-div .founders-content span {
  font-family: "Onest", sans-serif;
  font-size: 21px;
  color: #0f868c;
  font-weight: 600;
  margin-top: 8px;
  display: block;
}
@media (max-width: 1280px) {
  .founders-desk .founders-grid .founders-div .founders-content span {
    margin-top: 5px;
  }
}
.founders-desk .founders-grid .founders-div .founders-content p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  text-align: left !important;
  margin-top: 10px;
  line-height: 30px;
}
@media (max-width: 1366px) {
  .founders-desk .founders-grid .founders-div .founders-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .founders-desk .founders-grid .founders-div .founders-content p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .founders-desk .founders-grid .founders-div .founders-content p {
    margin-top: 10px;
    line-height: 27px;
  }
}
@media (max-width: 1470px) {
  .founders-desk .founders-grid .founders-div .founders-content p {
    margin-top: 10px;
  }
}
@media (max-width: 1280px) {
  .founders-desk .founders-grid .founders-div .founders-content p {
    line-height: 27px;
    margin-top: 5px;
  }
}
@media (max-width: 500px) {
  .founders-desk .founders-grid .founders-div .founders-content p {
    text-align: justify !important;
  }
}

.quote-strip {
  width: 100%;
  float: left;
}
.quote-strip h2 {
  text-align: center;
  font-size: 35px;
  color: #0f868c;
  font-family: "Onest", sans-serif;
  font-weight: 500;
}
@media (max-width: 1366px) {
  .quote-strip h2 {
    font-size: 32px;
  }
}
@media (max-width: 1280px) {
  .quote-strip h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .quote-strip h2 {
    line-height: 38px;
  }
}
@media (max-width: 500px) {
  .quote-strip h2 {
    font-size: 25px;
  }
}

@media (max-width: 500px) {
  .mrg-top20 {
    margin-top: 40px;
  }
}

.pd-7 {
  padding: 0 7% !important;
}
@media (max-width: 768px) {
  .pd-7 {
    margin-top: 0 !important;
  }
}
@media (max-width: 500px) {
  .pd-7 {
    padding: 0 4% !important;
  }
}

.width50 {
  width: 100% !important;
}

.our-story {
  width: 100%;
  display: grid;
  grid-auto-rows: 550px;
  grid-template-columns: repeat(auto-fill, minmax(670px, 1fr));
  margin-bottom: 100px;
  position: relative;
}
.our-story:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .our-story {
    margin-bottom: 100px;
  }
}
@media (max-width: 1536px) {
  .our-story {
    grid-auto-rows: 500px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1470px) {
  .our-story {
    margin-bottom: 80px;
    grid-auto-rows: 420px;
  }
}
@media (max-width: 1280px) {
  .our-story {
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
    grid-auto-rows: 400px;
  }
}
@media (max-width: 1024px) {
  .our-story {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .our-story {
    grid-template-columns: repeat(auto-fill, minmax(510px, 1fr));
    grid-auto-rows: 360px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .our-story {
    grid-auto-rows: 360px;
  }
}
@media (max-width: 500px) {
  .our-story {
    grid-auto-rows: 410px;
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
  }
}
@media (max-width: 420px) {
  .our-story {
    grid-auto-rows: 455px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

.transform-trans {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.bg-1 {
  background-image: url("../img/how-it-all-started.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-2 {
  background-image: url("../img/the-heart-of-our-creation.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-3 {
  background-image: url("../img/going-forward-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .desk-order {
    order: 2;
  }
}

@media (max-width: 991px) {
  .mobile-order {
    order: 1;
  }
}

@media (max-width: 768px) {
  .founders-copy {
    display: block !important;
  }
}

.left-img {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (max-width: 991px) {
  .left-img {
    border-radius: 0;
  }
}

.right-img {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
@media (max-width: 991px) {
  .right-img {
    border-radius: 0;
  }
}

.thank-page-content {
  width: 100%;
  height: 100vh;
  background-color: #003033;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thank-page-content .thank-you-content {
  text-align: center;
}
.thank-page-content .thank-you-content h1 {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 65px;
  line-height: 75px;
}
@media (max-width: 1366px) {
  .thank-page-content .thank-you-content h1 {
    font-size: 55px;
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  .thank-page-content .thank-you-content h1 {
    font-size: 50px;
    line-height: 65px;
  }
}
@media (max-width: 500px) {
  .thank-page-content .thank-you-content h1 {
    font-size: 36px;
    line-height: 50px;
  }
}
.thank-page-content .thank-you-content p {
  font-family: "Onest", sans-serif;
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .thank-page-content .thank-you-content p {
    font-size: 22px;
  }
}
@media (max-width: 500px) {
  .thank-page-content .thank-you-content p {
    font-size: 20px;
    margin-top: 15px;
  }
}

/*****************heading and paragraph fonts****************/
/***********************Home Page Css***********************/
.custom-container {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .custom-container {
    width: 90%;
  }
}

.desk-block {
  display: block;
}
@media (max-width: 768px) {
  .desk-block {
    display: none;
  }
}

.desk-none {
  display: none;
}
@media (max-width: 768px) {
  .desk-none {
    display: block;
  }
}

.mt-90 {
  margin-top: 70px;
}
@media (max-width: 1536px) {
  .mt-90 {
    margin-top: 55px;
  }
}
@media (max-width: 1470px) {
  .mt-90 {
    margin-top: 50px;
  }
}
@media (max-width: 1101px) {
  .mt-90 {
    margin-top: 50px;
  }
}
@media (max-width: 1024px) {
  .mt-90 {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .mt-90 {
    margin-top: 25px;
  }
}
@media (max-width: 500px) {
  .mt-90 {
    margin-top: 20px;
  }
}

.cta-btn {
  padding: 8px 13px;
  background-color: #0f868c;
  font-family: "Onest", sans-serif;
  color: #fff;
  font-size: 18px;
  border-radius: 35px;
  font-weight: 500;
  transition: all 0.5s ease;
  border: 1px solid #0f868c;
  display: inline-block;
}
.cta-btn:hover {
  color: #0f868c;
  background-color: #fff;
  transition: all 0.5s ease;
}
@media (max-width: 1600px) {
  .cta-btn {
    padding: 10px 15px;
  }
}
@media (max-width: 1366px) {
  .cta-btn {
    font-size: 17px;
  }
}
@media (max-width: 1280px) {
  .cta-btn {
    padding: 8px 13px;
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .cta-btn {
    padding: 8px 13px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .cta-btn {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .cta-btn {
    font-size: 17px;
  }
}

.pdb-5 {
  padding-bottom: 5%;
}

.pdt-5 {
  padding-top: 5%;
}

.hero-banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.hero-banner .mil-video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2901960784);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*****************************Sticky Icons Css******************************/
.sticky-icon {
  z-index: 1;
  position: fixed;
  top: 40%;
  right: 1.3%;
  width: 135px;
  display: flex;
  flex-direction: column;
}
.sticky-icon a {
  transform: translate(100px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: capitalize;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.8s;
  background-color: #0f868c;
  color: #fff;
  display: flex;
  align-items: center;
}
.sticky-icon a:hover {
  color: #fff;
  transform: translate(28px, 0px);
}
.sticky-icon a:hover i {
  transform: rotate(360deg);
}
.sticky-icon a i {
  font-size: 22px;
  background-color: #fff;
  height: 40px;
  width: 40px;
  color: #0f868c;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.5s;
  display: inline-block;
}

/*******************************Scroll To Top Css*********************************/
.progress-wrap {
  right: 25px;
  bottom: 25px;
  color: #1e1e1e;
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #0f868c;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (max-width: 500px) {
  .progress-wrap {
    bottom: 90px;
  }
}
.progress-wrap input {
  z-index: 10001;
}
.progress-wrap input:checked + html {
  scroll-snap-type: unset;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #7cdeec;
  left: 2px;
  top: 0px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  opacity: 0;
}
.progress-wrap:hover::before {
  opacity: 1;
}
.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  left: 2px;
  top: 0px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #fff;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.bottom-div {
  width: 100%;
  height: 6px;
  background-image: url("../img/downward-arrow.png");
  background-repeat: repeat-x;
  position: absolute;
  z-index: 1;
  bottom: 0;
}

/**************************************Why Meshiva css***********************************/
.why-meshiva {
  background-color: #fff;
  padding: 5% 0;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .why-meshiva {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .why-meshiva {
    padding: 4% 0;
  }
}
.why-meshiva::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 520px;
  background-image: url(../img/why-meshiva-vector.png);
  background-size: cover;
  right: -20px;
  top: -80px;
}
.why-meshiva h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 1600px) {
  .why-meshiva h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .why-meshiva h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .why-meshiva h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .why-meshiva h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .why-meshiva h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .why-meshiva h1 {
    letter-spacing: 0;
  }
}
.why-meshiva p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  text-align: center;
  font-size: 19px;
  line-height: 30px;
  margin-top: 25px;
}
@media (max-width: 1366px) {
  .why-meshiva p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .why-meshiva p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .why-meshiva p {
    margin-top: 15px;
  }
}
@media (max-width: 1366px) {
  .why-meshiva p {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .why-meshiva p {
    line-height: 28px;
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .why-meshiva p {
    margin-top: 5px;
  }
}
@media (max-width: 1600px) {
  .why-meshiva p br {
    display: none;
  }
}
.why-meshiva .why-meshiva-grid {
  width: 100%;
  margin-top: 130px;
}
@media (max-width: 1600px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 120px;
  }
}
@media (max-width: 1536px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 90px;
  }
}
@media (max-width: 1470px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 100px;
  }
}
@media (max-width: 1280px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 80px;
  }
}
@media (max-width: 1024px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 80px;
  }
}
@media (max-width: 500px) {
  .why-meshiva .why-meshiva-grid {
    margin-top: 60px;
  }
}
.why-meshiva .why-meshiva-grid .why-meshiva-box {
  width: 100%;
  height: 270px;
  border: 2px solid #ededed;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center;
  padding: 15px;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media (max-width: 1536px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box {
    height: 270px;
  }
}
@media (max-width: 1470px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box {
    height: 330px;
  }
}
@media (max-width: 1366px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box {
    height: 310px;
  }
}
@media (max-width: 1280px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box {
    height: 295px;
  }
}
@media (max-width: 1024px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box {
    height: 235px;
  }
}
.why-meshiva .why-meshiva-grid .why-meshiva-box .icon-box {
  width: 105px;
  height: 105px;
  border-radius: 70px;
  background-color: #0f868c;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(149, 157, 165, 0.33) 0px 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.why-meshiva .why-meshiva-grid .why-meshiva-box .icon-box img {
  transition: all 0.5s ease;
}
@media (max-width: 1366px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box .icon-box img {
    width: 52%;
  }
}
.why-meshiva .why-meshiva-grid .why-meshiva-box .icon-box i {
  font-size: 35px;
  color: #fff;
}
@media (max-width: 1600px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box .icon-box {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 1366px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box .icon-box {
    width: 80px;
    height: 80px;
  }
}
.why-meshiva .why-meshiva-grid .why-meshiva-box h4 {
  font-size: 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-top: 60px;
}
@media (max-width: 1600px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box h4 {
    font-size: 25px;
  }
}
@media (max-width: 1536px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box h4 {
    font-size: 24px;
  }
}
@media (max-width: 1470px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box h4 {
    font-size: 24px;
  }
}
@media (max-width: 1366px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box h4 {
    line-height: 32px;
    margin-top: 55px;
  }
}
@media (max-width: 1280px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box h4 {
    margin-top: 45px;
  }
}
.why-meshiva .why-meshiva-grid .why-meshiva-box p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  color: #505050;
  margin-top: 12px;
}
@media (max-width: 1366px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    font-size: 17px;
  }
}
@media (max-width: 1536px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    margin-top: 10px;
  }
}
@media (max-width: 1470px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    margin-top: 10px;
    font-size: 19px;
  }
}
@media (max-width: 1366px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 10px;
  }
}
@media (max-width: 1280px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    line-height: 25px;
  }
}
@media (max-width: 500px) {
  .why-meshiva .why-meshiva-grid .why-meshiva-box p {
    font-size: 18px;
    margin-top: 7px;
  }
}
.why-meshiva .why-meshiva-grid .why-meshiva-box:hover {
  background-color: #ededed;
  transition: all 0.5s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 2px solid #0f868c;
}
.why-meshiva .why-meshiva-grid .why-meshiva-box:hover .icon-box img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  transition: all 0.5s ease;
}

/*****************************homepage products css***********************************/
.homepage-products {
  width: 100%;
}
@media (max-width: 500px) {
  .homepage-products {
    padding-top: 5%;
  }
}
.homepage-products h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 1600px) {
  .homepage-products h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .homepage-products h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .homepage-products h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .homepage-products h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .homepage-products h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .homepage-products h1 {
    letter-spacing: 0;
  }
}
.homepage-products .homepage-prodcuts-slider .slick-track {
  display: flex;
}
.homepage-products .homepage-prodcuts-slider .slick-slide {
  background: white;
  width: 600px !important;
  padding: 0;
  margin: 0 15px;
}
@media (max-width: 991px) {
  .homepage-products .homepage-prodcuts-slider .slick-slide {
    margin: 0 9px;
  }
}
.homepage-products .homepage-prodcuts-slider .slick-slide:hover a span {
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.homepage-products .homepage-prodcuts-slider .slick-slide:hover a span.no-rotate {
  transform: rotate(0);
}
.homepage-products .homepage-prodcuts-slider .image-box {
  overflow: hidden;
  cursor: pointer;
}
.homepage-products .homepage-prodcuts-slider .image-box img {
  width: 100%;
}
.homepage-products .homepage-prodcuts-slider .slide-arrow {
  position: absolute;
  top: 35%;
  margin-top: -15px;
  z-index: 1;
}
.homepage-products .prev-arrow {
  left: -70px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .homepage-products .prev-arrow {
    left: -15px;
  }
}
.homepage-products .prev-arrow::before {
  position: absolute;
  content: "\ea64";
  color: #0f868c;
  left: 50%;
  top: 50%;
  font-family: "remixicon";
  font-style: normal;
  transform: translate(-50%, -50%);
  font-size: 27px;
}
.homepage-products .prev-arrow:hover {
  background-color: #114547;
  transition: all 0.5s ease;
}
.homepage-products .prev-arrow:hover::before {
  color: #fff;
  transition: all 0.5s ease;
}
.homepage-products .next-arrow {
  right: -70px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .homepage-products .next-arrow {
    right: -15px;
  }
}
.homepage-products .next-arrow::before {
  position: absolute;
  content: "\ea6e";
  color: #0f868c;
  left: 50%;
  top: 50%;
  font-family: "remixicon";
  font-style: normal;
  transform: translate(-50%, -50%);
  font-size: 27px;
}
.homepage-products .next-arrow:hover {
  background-color: #114547;
  transition: all 0.5s ease;
}
.homepage-products .next-arrow:hover::before {
  color: #fff;
  transition: all 0.5s ease;
}
.homepage-products .homepage-prodcuts-slider .slide img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.homepage-products .homepage-prodcuts-slider .slide img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  transform: scale(1.1);
}
.homepage-products .home-product-carousel-content {
  width: 100%;
  padding: 15px 5px;
}
@media (max-width: 1280px) {
  .homepage-products .home-product-carousel-content {
    padding: 10px 0;
  }
}
@media (max-width: 1101px) {
  .homepage-products .home-product-carousel-content {
    padding: 10px 0;
  }
}
.homepage-products .home-product-carousel-content h4 {
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #114547;
  font-weight: 600;
  line-height: 38px;
}
@media (max-width: 1366px) {
  .homepage-products .home-product-carousel-content h4 {
    font-size: 26px;
  }
}
@media (max-width: 1280px) {
  .homepage-products .home-product-carousel-content h4 {
    font-size: 23px;
    line-height: 34px;
  }
}
@media (max-width: 500px) {
  .homepage-products .home-product-carousel-content h4 {
    font-size: 25px;
  }
}
.homepage-products .home-product-carousel-content span {
  font-family: "DM Sans", sans-serif;
  font-size: 21px;
  color: #114547;
  display: inline-block;
  font-weight: 600;
  margin-top: 5px;
  height: 30px;
  line-height: 32px;
  color: #0f868c;
}
@media (max-width: 1536px) {
  .homepage-products .home-product-carousel-content span {
    line-height: 27px;
    margin-top: 5px !important;
  }
}
@media (max-width: 1470px) {
  .homepage-products .home-product-carousel-content span {
    margin-top: 10px;
  }
}
@media (max-width: 1366px) {
  .homepage-products .home-product-carousel-content span {
    font-size: 19px;
    line-height: 30px;
  }
}
@media (max-width: 1280px) {
  .homepage-products .home-product-carousel-content span {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .homepage-products .home-product-carousel-content span {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .homepage-products .home-product-carousel-content span {
    font-size: 18px;
  }
}
.homepage-products .home-product-carousel-content span br {
  display: none;
}
@media (max-width: 1600px) {
  .homepage-products .home-product-carousel-content span br {
    display: block;
  }
}
@media (max-width: 1101px) {
  .homepage-products .home-product-carousel-content span br {
    display: none;
  }
}
@media (max-width: 991px) {
  .homepage-products .home-product-carousel-content span br {
    display: block;
  }
}
.homepage-products .home-product-carousel-content p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  margin: 12px 0;
  color: #114547;
}
@media (max-width: 1366px) {
  .homepage-products .home-product-carousel-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .homepage-products .home-product-carousel-content p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .homepage-products .home-product-carousel-content p {
    margin: 10px 0;
  }
}
@media (max-width: 1470px) {
  .homepage-products .home-product-carousel-content p {
    font-size: 19px;
  }
}
@media (max-width: 1366px) {
  .homepage-products .home-product-carousel-content p {
    font-size: 17px;
  }
}
@media (max-width: 1280px) {
  .homepage-products .home-product-carousel-content p {
    font-size: 16px;
    line-height: 24px;
    margin: 5px 0;
  }
}
@media (max-width: 1101px) {
  .homepage-products .home-product-carousel-content p {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .homepage-products .home-product-carousel-content p {
    font-size: 18px;
  }
}
.homepage-products .home-product-carousel-content a {
  color: #0f868c;
  font-size: 17px;
  text-decoration: none;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  margin-top: 0px;
  display: block;
}
.homepage-products .home-product-carousel-content a span {
  transition: all 0.5s ease;
  display: inline-block;
  font-weight: 500;
  margin-top: 0;
}
@media (max-width: 1536px) {
  .homepage-products .home-product-carousel-content a {
    margin-top: -5px;
  }
}
@media (max-width: 1366px) {
  .homepage-products .home-product-carousel-content a {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 1280px) {
  .homepage-products .home-product-carousel-content a {
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  .homepage-products .home-product-carousel-content a {
    font-size: 17px;
  }
}

/*******************************One Earth / One Chance Css********************************/
.one-earth {
  width: 100%;
  background-image: url("../img/one-earth-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  float: left;
  padding: 5% 0;
  width: 100%;
}
.one-earth::before {
  position: absolute;
  content: "";
  width: 454px;
  height: 668px;
  background-image: url("../img/one-earth-bg-vector.png");
  background-size: cover;
  left: -20px;
  top: 0px;
}
@media (max-width: 1536px) {
  .one-earth {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .one-earth {
    padding: 4% 0;
  }
}
.one-earth .one-earth-main-box {
  width: 90%;
  margin: 0 auto;
  display: block;
}
.one-earth .one-earth-main-box .img-div {
  width: 55%;
  float: left;
  cursor: pointer;
  overflow: hidden;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
}
.one-earth .one-earth-main-box .img-div img {
  width: 100%;
  transition: all 0.5s;
}
.one-earth .one-earth-main-box .img-div .colored {
  display: block;
}
.one-earth .one-earth-main-box .img-div .gray {
  display: none;
}
.one-earth .one-earth-main-box .img-div:hover .colored {
  display: none;
}
.one-earth .one-earth-main-box .img-div:hover .gray {
  display: block;
}
@media (max-width: 1024px) {
  .one-earth .one-earth-main-box .img-div {
    width: 100%;
    margin-bottom: 30px;
  }
}
.one-earth .one-earth-main-box .one-earth-content-div {
  width: 45%;
  float: right;
  padding-left: 5%;
  padding-right: 5%;
}
@media (max-width: 1470px) {
  .one-earth .one-earth-main-box .one-earth-content-div {
    padding-right: 0;
  }
}
.one-earth .one-earth-main-box .one-earth-content-div h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 60px;
}
@media (max-width: 1600px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    letter-spacing: 0;
  }
}
@media (max-width: 1536px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    line-height: 55px;
  }
}
@media (max-width: 1470px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    line-height: 50px;
  }
}
@media (max-width: 1366px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    line-height: 50px;
  }
}
@media (max-width: 1280px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    line-height: 45px;
  }
}
@media (max-width: 1024px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .one-earth .one-earth-main-box .one-earth-content-div h1 {
    line-height: 40px;
  }
}
.one-earth .one-earth-main-box .one-earth-content-div p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  margin-top: 10px;
  line-height: 30px;
}
@media (max-width: 1366px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1536px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    margin-top: 10px;
  }
}
@media (max-width: 1470px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    font-size: 19px;
    margin-top: 10px;
  }
}
@media (max-width: 1366px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    line-height: 28px;
    font-size: 17px;
  }
}
@media (max-width: 1280px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    line-height: 27px;
    margin-top: 5px;
  }
}
@media (max-width: 500px) {
  .one-earth .one-earth-main-box .one-earth-content-div p {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .one-earth .one-earth-main-box .one-earth-content-div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/*******************************Cta Banner Css********************************/
.home-cta-banner {
  padding: 5% 0;
  width: 100%;
  background-image: url("../img/home-cta-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  position: relative;
}
@media (max-width: 1536px) {
  .home-cta-banner {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .home-cta-banner {
    padding: 4% 0;
  }
}
.home-cta-banner .cta-content {
  width: 60%;
  float: left;
  position: relative;
  z-index: 1;
}
.home-cta-banner .cta-content h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  line-height: 65px;
  margin-bottom: 30px;
  font-family: "Onest", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 1600px) {
  .home-cta-banner .cta-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .home-cta-banner .cta-content h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .home-cta-banner .cta-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .home-cta-banner .cta-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .home-cta-banner .cta-content h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .home-cta-banner .cta-content h1 {
    letter-spacing: 0;
  }
}
@media (max-width: 1536px) {
  .home-cta-banner .cta-content h1 {
    line-height: 60px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1366px) {
  .home-cta-banner .cta-content h1 {
    line-height: 55px;
  }
}
@media (max-width: 1280px) {
  .home-cta-banner .cta-content h1 {
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .home-cta-banner .cta-content h1 {
    line-height: 55px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .home-cta-banner .cta-content h1 {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .home-cta-banner .cta-content h1 {
    font-size: 28px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .home-cta-banner .cta-content {
    width: 75%;
  }
}
@media (max-width: 500px) {
  .home-cta-banner .cta-content {
    width: 100%;
  }
}
.home-cta-banner .img-div {
  width: 24%;
  position: absolute;
  right: 185px;
  top: -150px;
  z-index: 1;
}
@media (max-width: 1600px) {
  .home-cta-banner .img-div {
    width: 22%;
    top: -75px;
  }
}
@media (max-width: 1536px) {
  .home-cta-banner .img-div {
    top: -65px;
  }
}
@media (max-width: 1470px) {
  .home-cta-banner .img-div {
    top: -35px;
  }
}
@media (max-width: 1101px) {
  .home-cta-banner .img-div {
    right: 75px;
  }
}
@media (max-width: 1024px) {
  .home-cta-banner .img-div {
    width: 26%;
  }
}
@media (max-width: 500px) {
  .home-cta-banner .img-div {
    display: none;
  }
}
.home-cta-banner .img-div img {
  width: 100%;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.5411764706));
  animation: jumpAni 5s linear infinite;
}
.home-cta-banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.36);
  left: 0;
  top: 0;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/**********************************Homepage Counter Css**********************************/
.homepage-counter {
  padding: 5% 0;
  width: 100%;
  float: left;
  overflow: hidden;
}
@media (max-width: 1536px) {
  .homepage-counter {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .homepage-counter {
    padding: 4% 0;
  }
}
@media (max-width: 1101px) {
  .homepage-counter .row {
    align-items: center;
  }
}
.homepage-counter::before {
  position: absolute;
  content: "";
  width: 473px;
  height: 814px;
  background-image: url("../img/counter-bg-vector.png");
  background-size: cover;
  right: 0px;
  top: 0px;
}
.homepage-counter .img-box {
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .homepage-counter .img-box {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .homepage-counter .img-box {
    margin-top: 40px;
  }
}
.homepage-counter .img-box img {
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}
.homepage-counter .img-box:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
  filter: blur(4px);
}
.homepage-counter .img-box h2 {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 40px;
  line-height: 55px;
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 40px;
  font-weight: 600;
}
@media (max-width: 1536px) {
  .homepage-counter .img-box h2 {
    font-size: 36px;
    line-height: 50px;
  }
}
@media (max-width: 1470px) {
  .homepage-counter .img-box h2 {
    font-weight: 500;
    line-height: 45px;
  }
}
@media (max-width: 1366px) {
  .homepage-counter .img-box h2 {
    font-size: 32px;
    line-height: 48px;
    bottom: 35px;
    left: 35px;
  }
}
@media (max-width: 1280px) {
  .homepage-counter .img-box h2 {
    line-height: 40px;
  }
}
@media (max-width: 1101px) {
  .homepage-counter .img-box h2 {
    font-size: 30px;
    line-height: 42px;
    bottom: 25px;
    left: 25px;
  }
}
@media (max-width: 1024px) {
  .homepage-counter .img-box h2 {
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .homepage-counter .img-box h2 {
    line-height: 36px;
  }
}
.homepage-counter .home-counter-grid {
  width: 100%;
  display: grid;
  grid-auto-rows: 300px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 3em;
}
@media (max-width: 1600px) {
  .homepage-counter .home-counter-grid {
    grid-gap: 2em;
    grid-auto-rows: 251px;
  }
}
@media (max-width: 1536px) {
  .homepage-counter .home-counter-grid {
    grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    grid-gap: 2em;
    grid-auto-rows: 245px;
  }
}
@media (max-width: 1470px) {
  .homepage-counter .home-counter-grid {
    grid-auto-rows: 230px;
  }
}
@media (max-width: 1366px) {
  .homepage-counter .home-counter-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    grid-auto-rows: 211px;
  }
}
@media (max-width: 1280px) {
  .homepage-counter .home-counter-grid {
    grid-auto-rows: 196px;
  }
}
@media (max-width: 991px) {
  .homepage-counter .home-counter-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 500px) {
  .homepage-counter .home-counter-grid {
    grid-auto-rows: 170px;
  }
}
.homepage-counter .home-counter-grid .home-counter {
  border: 2px solid #ededed;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.homepage-counter .home-counter-grid .home-counter:hover {
  background-color: #ededed;
  transition: all 0.5s ease;
  border: 2px solid #0f868c;
}
.homepage-counter .home-counter-grid .home-counter .counter-box {
  padding: 35px;
}
@media (max-width: 1101px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box {
    padding: 20px;
  }
}
.homepage-counter .home-counter-grid .home-counter .counter-box h2 {
  font-family: "DM Sans", sans-serif;
  color: #0f868c;
  font-size: 80px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 65px;
  }
}
@media (max-width: 1536px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 70px;
  }
}
@media (max-width: 1470px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 60px;
  }
}
@media (max-width: 1280px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 55px;
  }
}
@media (max-width: 1101px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 45px;
  }
}
@media (max-width: 500px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 {
    font-size: 50px;
  }
}
.homepage-counter .home-counter-grid .home-counter .counter-box h2 span {
  font-weight: 300;
  font-size: 55px;
}
@media (max-width: 1470px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 span {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box h2 span {
    font-size: 30px;
  }
}
.homepage-counter .home-counter-grid .home-counter .counter-box P {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  font-size: 22px;
  color: #114547;
  line-height: 30px;
}
@media (max-width: 1366px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    text-align: justify;
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    font-size: 20px;
  }
}
@media (max-width: 1536px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    line-height: 28px;
  }
}
@media (max-width: 1366px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1280px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    line-height: 27px;
  }
}
@media (max-width: 1101px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .homepage-counter .home-counter-grid .home-counter .counter-box P {
    font-size: 18px;
  }
}

/**********************************Certifications Css********************************/
.certifications {
  width: 100%;
  background-image: url("../img/one-earth-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  float: left;
}
.certifications h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 1600px) {
  .certifications h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .certifications h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .certifications h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .certifications h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .certifications h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .certifications h1 {
    letter-spacing: 0;
  }
}
.certifications .certificates-list {
  width: 100%;
}
.certifications .certificates-list ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13%;
}
@media (max-width: 1470px) {
  .certifications .certificates-list ul {
    gap: 15%;
  }
}
@media (max-width: 1280px) {
  .certifications .certificates-list ul {
    gap: 10%;
  }
}
@media (max-width: 500px) {
  .certifications .certificates-list ul {
    display: block;
    text-align: center;
  }
}
.certifications .certificates-list ul li {
  display: inline-block;
  position: relative;
}
@media (max-width: 1280px) {
  .certifications .certificates-list ul li img {
    width: 85%;
  }
}
.certifications .certificates-list ul li::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 90%;
  background-color: #0f868c;
  right: -105px;
  top: 15px;
}
@media (max-width: 1470px) {
  .certifications .certificates-list ul li::after {
    height: 80%;
  }
}
@media (max-width: 1280px) {
  .certifications .certificates-list ul li::after {
    right: -50px;
  }
}
@media (max-width: 1101px) {
  .certifications .certificates-list ul li::after {
    height: 70%;
    right: -50px;
    top: 20px;
  }
}
@media (max-width: 500px) {
  .certifications .certificates-list ul li::after {
    display: none;
  }
}
.certifications .certificates-list ul li:nth-last-child(1)::after {
  display: none;
}
@media (max-width: 1101px) {
  .certifications .certificates-list ul li img {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .certifications .certificates-list ul li img {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .certifications .certificates-list ul li {
    border: 1px solid #ccc;
    margin: 5px;
  }
}

/********************************Upper Footer Css***********************************/
.upper-footer {
  width: 100%;
  float: left;
}
.upper-footer img {
  width: 100%;
  position: relative;
  bottom: -96px;
}
@media (max-width: 1600px) {
  .upper-footer img {
    bottom: -75px;
  }
}
@media (max-width: 1101px) {
  .upper-footer img {
    bottom: -52px;
  }
}

.common-banner::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(30, 30, 30, 0.4509803922);
}
.common-banner img {
  width: 100%;
}
.common-banner .banner-content {
  width: 100%;
  position: absolute;
  top: 50%;
}
.common-banner .banner-content h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  text-transform: capitalize;
  color: #114547;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 60px;
}
@media (max-width: 1600px) {
  .common-banner .banner-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 1470px) {
  .common-banner .banner-content h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .common-banner .banner-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 1280px) {
  .common-banner .banner-content h1 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .common-banner .banner-content h1 {
    font-size: 29px;
    line-height: 50px;
  }
}
@media (max-width: 500px) {
  .common-banner .banner-content h1 {
    letter-spacing: 0;
  }
}
.common-banner .banner-content p {
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  color: #fff;
  text-align: center;
  font-size: 22x;
  margin-top: 20px;
  font-weight: 36px;
}
@media (max-width: 1366px) {
  .common-banner .banner-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .common-banner .banner-content p {
    text-align: justify;
    font-size: 18px;
  }
}

.bread-crumb {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.bread-crumb ul li {
  float: left;
  padding: 0 10px;
  position: relative;
}
.bread-crumb ul li:nth-child(1)::before {
  display: none;
}
.bread-crumb ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -4px;
  background: url(../img/right_arrow.png);
  background-size: 30%;
  height: 22px;
  width: 22px;
  background-repeat: no-repeat;
}
.bread-crumb ul li a {
  font-size: 15px;
  line-height: 19px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  .bread-crumb ul li a {
    font-size: 14px;
  }
}
.bread-crumb ul li a.active {
  color: #7cdeec;
  font-weight: 500 !important;
}
.bread-crumb ul li a.active:hover {
  color: #fff;
  transition: all 0.5s ease;
}
.bread-crumb ul li:nth-child(1) {
  padding-left: 0;
}

.privacy-policy {
  width: 100%;
  padding: 5% 0;
  width: 100%;
}
@media (max-width: 1536px) {
  .privacy-policy {
    padding: 4% 0;
  }
}
@media (max-width: 1280px) {
  .privacy-policy {
    padding: 4% 0;
  }
}
.privacy-policy .privacy-content {
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1536px) {
  .privacy-policy .privacy-content {
    margin-bottom: 70px;
  }
}
@media (max-width: 1280px) {
  .privacy-policy .privacy-content {
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .privacy-policy .privacy-content {
    margin-bottom: 40px;
  }
}
.privacy-policy .privacy-content h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 38px;
  color: #114547;
  font-weight: 500;
  line-height: 45px;
}
@media (max-width: 1470px) {
  .privacy-policy .privacy-content h4 {
    font-size: 36px;
  }
}
@media (max-width: 1280px) {
  .privacy-policy .privacy-content h4 {
    font-size: 34px;
  }
}
@media (max-width: 1024px) {
  .privacy-policy .privacy-content h4 {
    font-size: 28px;
  }
}
.privacy-policy .privacy-content p {
  margin-bottom: 13px;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1e1e1e;
  line-height: 32px;
}
@media (max-width: 1366px) {
  .privacy-policy .privacy-content p {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .privacy-policy .privacy-content p {
    text-align: justify;
    font-size: 18px;
  }
}
.privacy-policy .privacy-content p a {
  color: #0f868c;
  text-decoration: underline;
}
.privacy-policy .privacy-content p:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .privacy-policy .privacy-content p {
    text-align: justify;
  }
}
.privacy-policy .privacy-content:nth-last-child(1) {
  margin-bottom: 0;
}
.privacy-policy::before {
  position: absolute;
  content: "";
  width: 454px;
  height: 668px;
  background-image: url("../img/one-earth-bg-vector.png");
  background-size: cover;
  left: -20px;
  bottom: 35%;
}
.privacy-policy::after {
  position: absolute;
  content: "";
  width: 300px;
  height: 520px;
  background-image: url(../img/why-meshiva-vector.png);
  background-size: cover;
  right: 0;
  bottom: 0;
}

/*# sourceMappingURL=style.css.map */
