html {
    font-size: 16px; /* 1em = 16px */
  }

/* use desktop first approach */

/*  Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Add your styles here */
    body{
        font-size: 1.125em; /* 18px */
    }
    .container {
        max-width: 1196px;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Add your styles here */
    body{
        font-size: 1.0625em; /* 17px */
    }
    .container {
        max-width: 960px;
    }
}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) and (max-width: 991px) {
    /* Add your styles here */
    body{
        font-size: 1em; /* 16px */
    }
    .container {
        max-width: 720px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    /* Add your styles here */
    body {
        font-size: 0.9375em; /* 15px */
      }
    .container {
        max-width: 540px;
    }
    .card-custom{
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .top_slider{
        margin-top: 0px;
    }
    .top_slider_in{
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .home_banner_part_block .top_slider .home_ask_owl img{
        height: 9.375em;
    }


}

/* Extra small devices (portrait phones, less than 576px) */

@media (max-width: 575px) {
    /* Add your styles here */
    body {
        font-size: 0.875em; /* 14px */
      }
    .container {
        max-width: 100%;
    }
    .card-custom{
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    .top_slider{
        margin-top: 0px;
    }
    .top_slider_in{
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .home_banner_part_block .top_slider .home_ask_owl img{
        height: 9.375em;
    }
    .card-container{
        flex-direction: column;
        max-width: 20em;
    }
    .tab{
        padding: 5px 15px;
    }
    .panels{
        box-shadow: 0 2rem 2rem #0000002e;
        border-radius: 15px;
    }
}
