@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --curly-font: "Cormorant Garamond", serif;
  --dark-blue: #000e67;
  --light-blue: #54758a;
  --yellow: #f0b323;
  --bright-blue: #0032a0;
  --deep-blue: #2e364a;
  --gray: #00000070;
  --sky-blue:#257aa4;
}

.wrap{
    flex-wrap: wrap;
  }

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f8f6fe;
}

a {
  text-decoration: none;
  color: inherit;
}

.flex-class {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-class {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul {
  list-style: none;
}


.hero{
  padding: 100px 0;
  background-color: var(--sky-blue);
  color: #fff;
  font-size: 25px;
  position: relative;
  flex-direction: column;
}

.achivments{
  padding-top: 50px;
}

.achivments .cards{
  width: 100%;
  height: 100%;
}

.achivments .cards .card{
  width: 40%;
  min-width: 300px;
  margin: 30px;
  background-color: #fff;
  box-shadow: 3px 3px 10px 6px #00000010;
}

.achivments .cards .card img{
  width: 100%;
}

.achivments .cards .card .bottom{
  justify-content: flex-start;
  padding: 20px;
}

.achivments .cards .card .bottom .left{
  background-image: linear-gradient(600deg, #89f7fe 0%, #66a6ff 100%);
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px 6px #00000010;
}

.achivments .cards .card .bottom .left .number{
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.achivments .cards .card .bottom .left .text{
  color: #fff;
  font-weight: 600;
}

.achivments .cards .card .bottom .right{
  font-size: 25px;
  margin-left: 20px;
  font-weight: 600;
}

.underline-box-heading{
  margin-top: 50px;
}


.filter{
  padding-bottom: 0;
  border-radius: 15px ;
  position: relative;
}

.filter .card{
  width: 100px;
  text-align: center;
  padding: 10px;
  border-right: none;
  cursor: pointer;
  border-radius: 15px;
  z-index: 5;
  transition: 0.4s color ease;
  font-size: medium;
  color: var(--sky-blue);
  font-weight: 700;
}
.filter .card.active{
  color: #fff;
}
.bg-wrapper{
  width: 100px;
  height: 40px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: var(--sky-blue);
  transition: 0.4s left ease;
}

.filter-wrapper{
  position: absolute;
  padding: 5px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 10px 5px #00000020;
  bottom: -25px;
}

@media only screen and (max-width:800px){
  .hero h1{
    text-align: center;
    font-size: 40px;
  }
}

@media only screen and (max-width:680px){
  .achivments .cards .card{
    width: 90%;
  }
}

@media only screen and (max-width:475px){
  .hero h1{
    width: 90%;
    text-align: start;
  }

  .filter .card{
    width: 80px;
  }

  .bg-wrapper{
    width: 80px;
  }
}

@media only screen and (max-width:440px){
  
.achivments .cards .card .bottom .right{
  font-size: medium;
}

.achivments .cards .card .bottom .left{
  padding: 15px;
}


.underline-box-heading{
  width: 90%;
  text-align: center;
  margin: auto;
}
}