* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    list-style: none;
    font-weight: 600;
}
:root {
    --mainColor: #C1181F;
    --secondaryColor: #fd2828;
    --bgColor: #eee;
    --white: #ffffff;
    --black: #000000;
}
.categories_list::-webkit-scrollbar {
    display: none;
  }
.categories_list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
html {
    scroll-behavior: smooth;
}
body {
    width: 100%;
    background: var(--white);
    /* background: url(../img/bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}
.wrapper {
    margin: 0 auto;
    max-width: 767px;
    min-height: 100vh;
}
/* .powered {
    z-index: 10000;
    background: var(--mainColor);
    padding: 15px;
    position: fixed;
    border-radius: 30px;
    bottom: 10px;left: 50%;
    transform: translateX(-50%);
} */
.powered {
    z-index: 10000;
    background: var(--white);
    padding: 15px 0px;
    width: 100%;
    position: fixed;
    bottom: 0;left: 0;
}
.powered h3 {
    text-align: center;
    color: var(--black);
    font-weight: 400;
    font-size: 13px;
}
.powered h3 a {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}
main {
    width: 100%;
    padding: 60px 0px 50px 0px;
}
.languages_pop {
    border-radius: 10px;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    height: 330px;
    position: fixed;
    background: var(--mainColor);
    flex-direction: column;
    display: flex;align-items: center;justify-content: space-between;
    top: 50%;left: 50%;
    transition: 200ms;
    transform: translate(-50%,-50%);
    z-index: 1000;
    padding: 30px 20px 20px 20px;
    box-shadow: 0px 0px 20px rgba(0,0,0,.6);
}
.languages_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.languages_list li button {
    outline: none;
    border: none;
    border-radius: 5px;
    display: flex;align-items: center;justify-content: center;
    width: 120px;
    padding: 10px 0px;
    background: var(--white);
    color: var(--mainColor);
    margin: 5px 0px;
}
.language_active {
    visibility: visible;
    opacity: 1;
}
.cancel_btn {
    cursor: pointer;
    color: var(--white);
    transition: 150ms;
    font-size: 25px;
}
nav {
    width: 100%;
    max-width: 767px;
    position: fixed;
    top: 0;left: 50%;
    transform: translateX(-50%);
    margin: 0px 0px 10px 0px;
    z-index: 10000;
    background: var(--white);
}
.nav_container {
    width: 100%;
    display: flex;
    padding: 20px 0px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.language_btn {
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 20px;
    display: inline-block;
    color: var(--black);
    border: 1px solid rgba(0,0,0,.2);
    position: absolute;
    z-index: 100;
    background: var(--white);
    right: 5px;
    transition: 200ms;
}
.language_btn:hover {
    background: rgba(0,0,0,.2);
}
.back_btn {
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 18px;
    display: inline-block;
    color: var(--black);
    border: 1px solid rgba(0,0,0,.2);
    position: absolute;
    z-index: 100;
    background: var(--white);
    left: 5px;
    transition: 200ms;
}
.back_btn:hover {
    background: rgba(0,0,0,.2);
}
.categories_heading {
    font-size: 18px;
    font-weight: 500;
}
.container {
    max-width: 767px;
    margin: 0px auto 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.box {
    max-width: 500px;
    width: calc(100%/3);
    border-radius: 2px;
    position: relative;
    padding: 5px;
    overflow: hidden;
    cursor: pointer;
    display: flex;flex-direction: column;align-items: center;
}
.box_img {
    width: 100%;
    min-height: 100%;
    position: relative;
    transition: 300ms;
    border-radius: 6px;
}
.box_img_container {
    overflow: hidden;
    min-height: 100%;
    min-width: 100%;
    position: relative;
    border-radius: 6px;
    z-index: 99;
    overflow: hidden;
}
.box:hover .box_img {
    transform: scale(1.05);
}
/* .box_text {
    padding: 10px 0px;
    display: block;
    width: 100%;
} */
.box_name {
    position: absolute;
    border-radius: 0px 20px 3px 0px;
    font-size: 18px;
    color: var(--white);
    z-index: 100;
    font-weight: 500;
    /* background: var(--mainColor); */
    bottom: 15px;left: 5px;
    padding: 10px 20px 10px 20px;
}
.box_img_container::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    z-index: 1000;
    position: absolute;
    top: 0;left: 0;
}
#fast_call {
    position: fixed;
    z-index: 1000 !important;
    right: 50px;
    bottom: 65px;
    background: #5BC236;
    color: var(--white);
    font-size: 25px;
    width: 60px;
    height: 60px;
    display: flex;align-items: center;justify-content: center;
    border-radius: 50px;
    transition: 300ms;
}
#fast_call:hover {
    transform: translateY(-5px);
}
@media screen and (max-width: 508px) {
    .box_name {
        font-size: 17px;
    }
    .box {
        padding: 5px;
    }
    .box_name {
        font-size: 15px;
    }
    .categories_list::-webkit-scrollbar {
        display: none;
      }
    .categories_list {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    #fast_call {
        right: 20px;    
        font-size: 20px;
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 675px) {
    .box {
        width: calc(100%/2);
    }
}
@media screen and (max-width: 400px) {
    .container {
        width: 98%;
    }
    .box_name {
        bottom: 20px;
        padding: 10px 20px 10px 15px;
    }
}
@media screen and (max-width: 390px) {
    .box_name {
        font-size: 13px;
    }
}
@media screen and (max-width: 320px) {
    .box {
        width: 100%;
    }
    .box_name {
        font-size: 17px;
    }
}