@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  background-color: #fff;
}

header {
    position: relative;
    padding: 0;
  }
  
  .navbar {
    /* ff 3.6+ */
    background: -moz-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* safari 5.1+,chrome 10+ */
    background: -webkit-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* opera 11.10+ */
    background: -o-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );
  
    /* ie 10+ */
    background: -ms-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* global 94%+ browsers support */
    background: linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
    width: 100%;
    height: 60px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "oswald", sans-serif;
  }
  
  .navbar li {
    list-style: none;
  }
  .navbar a {
    text-decoration: none;
    font-size: 1rem;
    color: rgb(255, 255, 255);
  }
  
  .navbar A:hover {
    color: #e32626;
  }
  
  .navbar ul li::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #e32626;
    transition: width 0.4s;
    margin: auto;
  }
  
  .navbar ul li:hover::after {
    width: 100%;
    transition: width 0.4s;
  }
  .logo {
    background-image: url(/src/assets/images/logo.png);
    background-size: cover;
    background-position: center;
    width: 10rem;
    height: 10rem;
  }
  .navbar .logo a {
    font-size: 1.5rem;
  }
  
  .navbar .links {
    display: flex;
    gap: 2rem;
  }
  .navbar .toggle_btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .action_btn {
    background-color: #fff;
    color: red !important;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
  }
  .action_btn:hover {
    scale: 1.05;
  }
  .action_btn:active {
    scale: 0.95;
  }
  /* container */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:1rem;
    min-height: 92vh;
    padding: 2rem;
    font-family: 'Oswald', sans-serif;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.5); */
    /* background: rgb(243, 240, 236); */
    border-radius: 2rem;
    color: #291313;
  }

  .tarife {
    display: flex;
    flex-direction: column;
   justify-content: center;
   align-items: center;
    margin: 1rem;
    padding: 2rem;
    background: -moz-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* safari 5.1+,chrome 10+ */
    background: -webkit-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* opera 11.10+ */
    background: -o-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );
  
    /* ie 10+ */
    background: -ms-linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
  
    /* global 94%+ browsers support */
    background: linear-gradient(
      90deg,
      rgba(240, 233, 233, 1) 0%,
      rgba(247, 222, 222, 1) 12%,
      rgba(255, 0, 0, 1) 100%
    );
    opacity: 80%;
    font-family: 'oswald', sans-serif;
    font-weight: bold;
    border-bottom-left-radius: 25%;
    border-top-right-radius: 25%;

    
}

.tarife h1 {
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  color: #291313;
  text-shadow: 2px 2px 2px #fff;
  font-family: 'oswald', sans-serif;
}
.tarife p {
  margin-top: 2rem;
  font-size: 1.5rem;
  text-align: justify;
  text-indent: 1rem;;
}
  /* container end */
  
  /* DROPDOWN */
  .dropdown_menu {
    display: none;
    position: absolute;
    width: 300px;
    height: 0;
    top: 60px;
    z-index: 9999;
    right: 2rem;
    background: rgba(240, 237, 237, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .dropdown_menu.open {
    height: auto;
  }
  .dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .dropdown_menu a {
    text-decoration: none;
    color: #d30707;
    pointer-events: auto;
  }
  
  .dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  /* DROPDOWN END */
  
  /* RESPONSIVE PART */
  
  @media (max-width: 992px) {
    .navbar .links,
    .navbar .action_btn {
      display: none;
    }
    .navbar .toggle_btn {
      margin-right: 5px;
      display: block;
    }
    .dropdown_menu {
      display: block;
    }
    .dropdown_menu a {
      display: block;
    }
  }
  
  @media (max-width: 547px) {
    .dropdown_menu {
      left: 2rem;
      width: unset;
    }
    .dropdown_menu a {
      display: block;
    }
  }
  
  /* NAVBAR END */

  .footer {
    position: relative;
    width: 100%;
    /* ff 3.6+ */
    background:-moz-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%); 

    /* safari 5.1+,chrome 10+ */
    background:-webkit-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* opera 11.10+ */
    background:-o-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );

    /* ie 10+ */
    background:-ms-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* global 94%+ browsers support */
    background:linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);
    min-height: 75px;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    opacity: 1;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 0.8rem;
    font-family: 'oswald', sans-serif;
    font-weight: 300;
  }
.sigle {
    display: flex;
    align-items: center;
}

.sigle img {
    height: 3rem;
    margin-right: 0.5rem;
}
  /* Footer END */
  
  