:root {
  --primary-color1: #1c3472;
  --primary-color2: #0adad0;
  --bg-light: #f6f6f6;
  --plan1: #1c3472;
  --plan2: #0adad0;
  --plan3: #da930a;
  --plan4: #93d772;
  --header-height: 60px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
/* 
@font-face {
  font-family: "LEIXO";
  src: url("fonts/LEIXO/LEIXO.ttf");
  src: url("fonts/LEIXO/LEIXO-DEMO.eot");
  src: url("fonts/LEIXO/LEIXO-DEMO.eot?#iefix") format("embedded-opentype"),
    url("fonts/LEIXO/LEIXO-DEMO.woff2") format("woff2"),
    url("fonts/LEIXO/LEIXO-DEMO.woff") format("woff"),
    url("fonts/LEIXO/LEIXO-DEMO.svg#LEIXO-DEMO") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  background: #ecfef2;
}
h1 {
  font-family: 'LEIXO', sans-serif;
  color: var(--primary-color1);
  margin: 1em;
}
a {
  text-decoration: none;
  color: #000;
}
ul,
li {
  list-style: none;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  min-height: 100vh;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}


.flex-container-global{
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.relative{
  position: relative;
}


.left-to-right{
  animation: left-to-right 1s ease-in-out alternate ;

}


.mySwiper {
  width: 90%;
  margin-bottom: 50px;
}

.swiper-img-container {
  height: 150px;
  width: 30vw;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #d0d0d0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-img-container img:hover  {
  transform: scale(1.2);
}
.swiper-img-container img {
  transition: transform 0.3s;
  height: 150%;
}


/*animation*/

@keyframes left-to-right {
  0%{
      transform: translate(-200%,0);
  } 
  100%{
      transform: translate(0,0);
      
  }
}