@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');


body {
  margin: 0;
  padding: 0;
  background-color: rgb(249, 255, 243);
}

.pricing {
  margin: 0;
  padding: 50px;

  background-color: hsl(234, 90%, 60%, 0.2);
  color: white;
  position: relative;
}

.conatiner-pr {
  margin: 40px;
  padding: 40px;
  overflow: hidden;
  font-size: medium;
}

#h1-of-pricing-main{
  font-family: 'Poppins', sans-serif !important;
} 

.container-pr h1 {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-family: serif;
  color: hsl(224, 30%, 27%);
}

.indian-dest-pr {
  width: 80vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.indian-dest-pr .image-pr img {
  height: 170px;
  width: 300px;
  border-radius: 15px 15px 0px 0px;
}

.card-pr {
  /* border: 1px solid rgb(255, 255, 255); */
  display: flex;
  flex-direction: column;
  border-radius: 15px 15px;
  /* box-shadow:  0 0 10px 5px rgba(65, 84, 241, 0.4), 0 0 20px 10px rgba(65, 84, 241, 0.3); */
 
 box-shadow: 0 0 10px 5px rgba(65, 84, 241, 0.1), 0 0 20px 10px rgba(65, 84, 241, 0.1);
  background-color: hsl(223, 60%, 17%);
  transition: all 0.3s linear 0.1s;
}

.card-pr:hover {
  transform: scale(1.02);
  box-shadow:  0 0 10px 5px rgba(65, 84, 241, 0.4), 0 0 20px 10px rgba(65, 84, 241, 0.3);
  /* box-shadow: 4px 6px; */
}

.card-pr .price-pr {
  display: flex;
  gap: 2px;
  flex-direction: column;
}

.a-pr {
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid white;
}

.card-pr .price-pr h3 {
  margin: 0px;
  padding: 2px;
}

.card-pr .price-pr p {
  margin: 2px;
  font-size: medium;
}
.b-pr {
  display: flex;
  justify-content: space-around;
  padding: 10px 2px;
}
.b-pr button {
  width: 150px;
  border-radius: 8px;
  
}

.b-pr button:hover {
  background-color: green;
  color: white;
}

/* media Query */
@media (max-width: 795px) {
  /* SAM EDITS */
  .card-pr {
    display: none;
  }
  .card-pr.active {
    display: block;
  }
  .slider-navigation-sam1 {
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform: translateY(220px);
    margin-bottom: 12px;
  }
  .slider-navigation-sam1 .nav-btn-sam1 {
    width: 17px;
    height: 17px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transform: 0.3s ease;
    align-self: flex-end;
    border: 1px solid black;
  }
  .slider-navigation-sam1 .nav-btn-sam1.active {
    background: black;
  }

  .slider-navigation-sam1 .nav-btn-sam1:not(:last-child) {
    margin-right: 20px;
  }

  .slider-navigation-sam1 .nav-btn-sam1:hover {
    transform: scale(1.2);
  }
  .pricing .slider-navigation-sam1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
  }
}

@media (max-width: 1270px) {
  .indian-dest-pr {
    width: 90vw;
  }
}

@media (max-width: 651px) {
  .pricing {
    padding: 50px 10px;
  }

  .indian-dest-pr {
    width: 100%;
    margin-top: 20px;
  }

  .indian-dest-pr .image-pr img {
    width: 240px;
    height: 135px;
  }
}

@media (max-width: 485px) {

  .container-pr h1 

  .indian-dest-pr .image-pr img {
    width: 200px;
    height: 112.5px;
  }

  .card-pr .price-pr p {
    margin: 2px;
    font-size: small;
  }
  .b-pr button {
    width: 100px;
    border-radius: 8px;
  }
}

@media (max-width: 440px) {
  .indian-dest-pr .image-pr img {
    width: 184px;
    height: 103.5px;
  }

  .card-pr .price-pr p {
    margin: 2px;
    font-size: x-small;
  }
  .b-pr button {
    border-radius: 8px;
  }
  .card-pr .price-pr h3 {
    margin: 0px;
    padding: 2px;
    font-size: small;
  }
}

@media (max-width: 412px) {
  .indian-dest-pr {
    width: 100%;
    margin-top: 20px;
    gap: 10px;
  }

  .indian-dest-pr .image-pr img {
    width: 160px;
    height: 90px;
  }

  .card-pr .price-pr p {
    margin: 2px;
    font-size: x-small;
  }
  .b-pr button {
    border-radius: 8px;
  }
  .card-pr .price-pr h3 {
    margin: 0px;
    padding: 2px;
    font-size: smaller;
  }
}
@media screen and (max-width: 420px){
  .container-pr h1 {
    font-size: 1.5rem;
    font-weight: 800;
  }
  .container-pr h1:hover{
    font-size: 1.5rem;
    color: black;
    
  }
}